home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-09 / mail2.zip / INSTALLH.BAT < prev    next >
DOS Batch File  |  1991-10-28  |  1KB  |  31 lines

  1. ECHO OFF
  2. cls
  3. REM This is an installation batch file for MLABEL
  4. IF .%2==. goto explain
  5. IF .%1==. goto explain
  6. %1ARCE %1MLABEL *.* %2 -r
  7. ECHO That's all for now...
  8. GOTO END
  9. :explain
  10. ECHO To install this software on a hard disk or high capacity floppy:
  11. ECHO First make sure you have created the subdirectory where the
  12. ECHO program should be. For example, to create a subdirectory
  13. ECHO called MAILLIST, start in the root directory and enter this
  14. ECHO command:
  15. ECHO       MD MAILLIST
  16. ECHO Now, if your new program disk is in drive A, and your hard
  17. ECHO disk is drive C, enter this command:
  18. ECHO       A:INSTALLH A: C:\MAILLIST
  19. ECHO If your new program disk is in drive B, and your hard disk is
  20. ECHO drive C, enter this command:
  21. ECHO       B:INSTALLH B: C:\MAILLIST
  22. ECHO If your drives have different letters than these, just insert
  23. ECHO the correct letters into the command. Make sure you type
  24. ECHO the command with the spacing and punctuation exactly as
  25. ECHO shown in this example, and use the actual name of your
  26. ECHO subdirectory.
  27. ECHO To install the software on 360K floppy disks, use the command:
  28. ECHO INSTALL
  29. GOTO END
  30. :END
  31.